a9a7a79e0f4611be13a2e5eb0a152601831c8b7c,src/com/vaadin/terminal/gwt/client/ui/VGridLayout.java,VGridLayout,requestLayout,#Set#,672

Before Change


                // sized
                // components
                // check if changed child affects min col widths
                cell.cc.setWidth("");
                cell.cc.setHeight("");

                cell.cc.updateWidgetSize();

After Change


                // cell sizes will only stay still if only relatively
                // sized components
                // check if changed child affects min col widths
                if (cell.cc != null) {
                    cell.cc.setWidth("");
                    cell.cc.setHeight("");

                    cell.cc.updateWidgetSize();